19
isPlainObject(): 是否为对象自变量
如何使用
// 如果是{}或者_new Object(),返回true
$.isPlainObject(obj);
如何实现
// 判断是否在自身原型上有isPrototypeOf属性
core_hasOwn.call(obj.constructor.prototype,"isPrototypeOf");
isEmptyObject(): 是否为空的对象
如何使用
// 如果是[],{}或者空的构造函数,返回true
$.isEmptyObject(obj)
如何实现
for( name in obj ){
return false;
}
构造函数会自动生成:Aaa.prototype.constructor = Aaa;
但是用for in是遍历不到的
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。